Conversation
- the paper states in section 3.6 for relative tcav, construct a positive
and negative set, e.g., for concepts P_dot, P_stripe, P_mesh this would
look like, P_stripe (positive) and {P_dot U p_mesh} (negative).
However, the code was giving sets like, P_stripe (pos), P_dot (neg).
Now, the complement set is used for relative tcav as described in the
paper.
- when computing relative tcav, plot function failed because concepts are
also 'random' concepts and is_random_concept(concept) is always true,
therefore. Now, plot for relative tcav handles 'random' concepts
correctly.
Contributor
|
Thank you for submitting this RP @monz ! Two things if you are able 1) mind changing the relative_cav variable to be is_relative_cav (to avoid confusion that the variable IS the cav) 2) this is big enough change that I feel a few tests could be very helpful. Would you mind adding a few simple ones to our test deck? Thank you! |
Contributor
Author
|
Hi @BeenKim, please have a look to the added tests, hope this is what you expected, kind regards, Markus. |
Contributor
Author
|
Hi @BeenKim I know its kind of a big PR, however, I am curious what you think about it. Kind Regards, Markus. |
Contributor
|
Hi Markus!
Thank you for incorporating our request! I'm excited to review this, but
having trouble finding time to test the new changes end-to-end.
Hopeful we'll get to this soon.
Cheers
Been
…On Fri, Jun 11, 2021 at 12:19 AM Markus Monz ***@***.***> wrote:
Hi @BeenKim <https://github.com/BeenKim> I know its kind of a big PR,
however, I am curious what you think about it. Kind Regards, Markus.
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub
<#111 (comment)>, or
unsubscribe
<https://github.com/notifications/unsubscribe-auth/AAP35E35ABRBEIG4H6FP5U3TSG2GHANCNFSM44NZHAOA>
.
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Hope I did understand the paper correctly and gave a proper fix.